home *** CD-ROM | disk | FTP | other *** search
/ Aminet 21 / Aminet 21 (1997)(GTI - Schatztruhe)[!][Oct 1997].iso / Aminet / gfx / aga / mv1440sup72.lha / mv1440sup72 / install+delete / delete_ mv1440sup72 next >
Text File  |  1997-07-28  |  2KB  |  58 lines

  1. ; Restore old monitorfiles  by Jürgen Einrauch 16. Juli 1997      
  2. failat 21
  3.  
  4. echo "  *n*e[1;32m  ___________________________________________________"
  5. echo "  *e[43m                                                   *e[0m"
  6. echo "  *e[0;28;43m   Delete mv1440sup72 - restore old monitorfiles*e[1m   *e[0m"
  7. echo "  *e[1;4;43m                                                   *e[0m*n"
  8.  
  9. IF NOT EXISTS SYS:monitorfiles_old
  10. echo "*n   File <monitorfiles_old> not found."
  11. echo "   Delete - Restore aborted."
  12. WAIT 4 secs
  13. EndCLI >NIL:
  14. quit
  15. ELSE
  16. echo "   *e[32mWarning. Read all information files first !*e[0m"
  17. echo "*n   Restore your old monitorfiles now ?"
  18. echo noline "   (Ja/Nein yes/no : "
  19. set > nil: in ?
  20. IF $in eq "ja"
  21.   skip start
  22. endif
  23. IF $in eq "j"
  24.   skip start
  25. endif
  26. IF $in eq "y"
  27.   skip start
  28. endif
  29. IF $in eq "yes"
  30.   skip start
  31. endif
  32. echo noline "*n   Delete - Restore aborted."
  33. EndCLI >NIL:
  34. quit
  35. endif
  36.  
  37. lab start
  38. echo "*n   The configuration of mv1440sup72 will be deleted now"
  39. echo "   from devs:monitors and env-archive directories."
  40. echo "   <mv1440sup72> on your Workbench will be saved."
  41.  
  42. delete >nil: sys:devs/monitors/ all
  43. delete >nil: sys:prefs/env-archive/sys/overscan.prefs
  44. delete >nil: sys:prefs/env-archive/sys/screenmode.prefs
  45.  
  46. copy >nil: from sys:monitorfiles_old/monitors to sys:devs/monitors all
  47. copy >nil: from sys:monitorfiles_old/sys to sys:prefs/env-archive/sys/ all
  48.  
  49. delete >nil: sys:monitorfiles_old all
  50. wait 3 secs
  51. echo "*n   Your old monitorfiles are restored now."
  52. echo "   Reset your computer to enable the configuration."
  53. echo "   New adjust and fix all windows." 
  54.  
  55. wait 6 secs
  56. EndCLI >NIL:
  57. quit
  58.